home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-13 | 330 b | 21 lines | [TEXT/R*ch] |
- /*
- IdleTask.java - Interface for an object with an idle or periodic task.
- */
-
- /** Interface for an object with an idle or periodic task.
- */
- public interface IdleTask
- {
- /** Start the task.
- */
- public void startTask();
-
- /** Stop the task.
- */
- public void stopTask();
-
- /** Perform the idle task.
- */
- public void idle();
- }
-